* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, #00abe4 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

main {
  padding: 80px 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section h2 {
  font-size: 2rem;
  color: #4a5568;
  margin-bottom: 20px;
  border-bottom: 3px solid #00abe4;
  padding-bottom: 10px;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(120deg, #a8e6cf 0%, #dcedc1 100%);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #00abe4;
  margin: 30px 0;
}

.cta-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  margin: 60px 0;
  border-radius: 12px;
  color: white;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #f5576c;
  padding: 18px 40px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background: #f8f8f8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #00abe4;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

footer {
  background: #2d3748;
  color: #a0aec0;
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00abe4;
}

.image-placeholder {
  text-align: center;
  margin: 30px 0;
}

.image-placeholder img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-placeholder img:hover {
  transform: scale(1.02);
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 25px;
    margin-bottom: 30px;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 15px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

}

@media (max-width: 480px) {
 
  h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  main {
    padding: 40px 0;
  }
}
